projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4a2ed03
)
(c-awk-escaped-nls*): Use eval-and-compile to avoid compilation error.
author
Chong Yidong
<cyd@stupidchicken.com>
Mon, 10 Jul 2006 18:54:07 +0000
(18:54 +0000)
committer
Chong Yidong
<cyd@stupidchicken.com>
Mon, 10 Jul 2006 18:54:07 +0000
(18:54 +0000)
lisp/progmodes/cc-awk.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/cc-awk.el
b/lisp/progmodes/cc-awk.el
index 4a475784106be092da4e3d860e2f65aab4cf8799..c93843f3f82a52d43aed7d782d5b94781b520630 100644
(file)
--- a/
lisp/progmodes/cc-awk.el
+++ b/
lisp/progmodes/cc-awk.el
@@
-107,7
+107,8
@@
(eval-and-compile
(defconst c-awk-escaped-nl "\\\\[\n\r]"))
;; Matches an escaped newline.
-(defconst c-awk-escaped-nls* (concat "\\(" c-awk-escaped-nl "\\)*"))
+(eval-and-compile
+ (defconst c-awk-escaped-nls* (concat "\\(" c-awk-escaped-nl "\\)*")))
;; Matches a possibly empty sequence of escaped newlines. Used in
;; awk-font-lock-keywords.
;; (defconst c-awk-escaped-nls*-with-space*